In This Topic
Defines the supported PDF blend modes.
Members
| Member | Description |
| COLOR | Creates a color with the saturation and hue of the source color and the luminance of the backdrop color. |
| COLOR_BURN | Darkens the backdrop color to reflect the source color. |
| COLOR_DODGE | Brightens the backdrop color to reflect the source color. |
| DARKEN | Selects the darker of the backdrop and source colors. |
| DIFFERENCE | Subtracts the darker of the two constituents colors from the lighter. |
| EXCLUSION | Same as Difference, but lower in contrast. |
| HARD_LIGHT | Multiplies or screens the colors depending on the source color. |
| HUE | Creates a color with the hue of the source color and the saturation and luminance of the backdrop color. |
| LIGHTEN | Selects the lighter of the backdrop and source colors. |
| LUMINOSITY | Creates a color with the luminance of the source color and the saturation and hue of the backdrop color. |
| MULTIPLY | Multiplies the backdrop and source color. |
| NONE | Same as Normal. |
| NORMAL | Selects the source color. |
| OVERLAY | Multiplies or screens the colors depending on the backdrop color. |
| SATURATION | Creates a color with the saturation of the source color and the hue and luminance of the backdrop color. |
| SCREEN | Multiplies the complements of backdrop and source color values, and then complements the result. |
| SOFT_LIGHT | Darkens or lightens the colors depending on the source color. |
Inheritance Hierarchy
java.lang.Object
java.lang.Enum
com.o2sol.pdf4java.graphics.PDFBlendMode
See Also